projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
97b5ae7
)
(x_draw_hollow_cursor): Subtract 1 from the last argument of XDrawRectangle.
author
Eli Zaretskii
<eliz@gnu.org>
Sat, 11 Mar 2006 12:04:41 +0000
(12:04 +0000)
committer
Eli Zaretskii
<eliz@gnu.org>
Sat, 11 Mar 2006 12:04:41 +0000
(12:04 +0000)
src/xterm.c
patch
|
blob
|
history
diff --git
a/src/xterm.c
b/src/xterm.c
index 7b952e1f45fb428a3fee605134299bd2ed500bc4..c0941b7cbdb460646681ec48a4b9a45e37e9adaf 100644
(file)
--- a/
src/xterm.c
+++ b/
src/xterm.c
@@
-7178,7
+7178,7
@@
x_draw_hollow_cursor (w, row)
/* Set clipping, draw the rectangle, and reset clipping again. */
x_clip_to_row (w, row, TEXT_AREA, gc);
- XDrawRectangle (dpy, FRAME_X_WINDOW (f), gc, x, y, wd, h);
+ XDrawRectangle (dpy, FRAME_X_WINDOW (f), gc, x, y, wd, h
- 1
);
XSetClipMask (dpy, gc, None);
}